home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 235 / Issue 235 - September 2007 - DPCS0907DVD.ISO / Microsoft / Expression Blend / Blend.en.msi / Sparkle.PBook.PhotoBook.xaml.cs.en < prev    next >
Encoding:
Text File  |  2007-01-30  |  632 b   |  29 lines

  1. ∩╗┐using System;
  2. using System.IO;
  3. using System.Net;
  4. using System.Windows;
  5. using System.Windows.Controls;
  6. using System.Windows.Data;
  7. using System.Windows.Media;
  8. using System.Windows.Media.Animation;
  9. using System.Windows.Navigation;
  10. using Microsoft.Win32;
  11. using System.Collections.ObjectModel;
  12. using System.Xml.Serialization;
  13.  
  14. namespace PhotoBook
  15. {
  16.     public partial class PhotoBookViewer
  17.     {
  18.         public PhotoBookViewer()
  19.         {
  20.             this.InitializeComponent();
  21.         }
  22.  
  23.         private void OnExit(object sender, RoutedEventArgs e)
  24.         {
  25.             this.Close();
  26.         }
  27.     }
  28.  
  29. }